home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / misc-part1 / 1726 < prev    next >
Encoding:
Text File  |  1996-08-05  |  3.9 KB  |  113 lines

  1. Newsgroups: comp.sys.amiga.misc,comp.sys.amiga.hardware,comp.sys.amiga.advocacy
  2. Path: wombat.hanse.de!root
  3. From: root@wombat.hanse.de (Bernd "Bernie" Meyer)
  4. Subject: Re: Motorola pricelist (was RE: CPU MHz in A1200+)
  5. Organization: Private uucp site lost in the voids of the black hole Germany is in the Internet
  6. Message-ID: <DL8FDx.140@wombat.hanse.de>
  7. References: <wfblanDKJ8Cw.1tn@netcom.com> <4car2m$76h@serpens.rhein.de> <DKtn25.MEC@news.zippo.com> <4cq2ui$j16@serpens.rhein.de> <4ctpl6$12h@dole.uninett.no> <4d0kep$ab6@murphy.servtech.com> <4d1dj9$cmd@serpens.rhein.de> <4d998s$1t8@murphy.servtech.com> <wfblanDL65sp.H0w@netcom.com>
  8. Date: Mon, 15 Jan 1996 17:03:32 GMT
  9.  
  10. wfblan@netcom.com (Wells Fargo Bank) writes:
  11.  
  12. >The bus which the PC's usually access memory from are only upwards of 33MHz
  13. >which 70ns RAM is plenty capable of handling.
  14.  
  15. Make that "which 60 ns isn't any less incapable of handling". Accessing
  16. RAM with a 33 MHz cycle would require 30ns RAM (actually, it would
  17. require even faster RAM, as there is circuit delay, setup time etc.).
  18. On a 33 MHz bus, both 60ns and 70ns fast page RAM has a 4-2-2-2 burst
  19. access. With 60ns EDO, you will get 4-1-1-1, however.
  20.  
  21. >Also, keep in mind that a 486DX2-66 is only being accessed from the Mother
  22. >Board at 33MHz...
  23.  
  24. true.
  25.  
  26. > Still within the 70ns range.
  27.  
  28. See above.
  29.  
  30. >Same with 486DX4-100, but its only 25MHz in this case. 
  31.  
  32. This, however, is utter nonsense. the "DX4" designation doesn't mean
  33. clock-quadrupling, although it would be logical. A DX4 CPU can either
  34. double or triple the external clock --- so a DX4-100 has either 33 or
  35. 50MHz external. 
  36.  
  37.  
  38. >A 486DX4-120 is 30MHz and so on.  
  39.  
  40. Nope, that's the big problem for the DX4-120 --- it isn't able to work 
  41. with a PCI bus (or at least it is rather expensive to make it work with
  42. one). Which is why AMD has brought out a new CPU (X5 or something like
  43. that) with a larger cache, better inner workings and clock-quadrupling,
  44. which will internally run at 133MHz and externally look like a 486 at
  45. 33MHz. It gives the P75 a run for the money....
  46.  
  47. >The only possible exception I am
  48. >aware of is the AMD (I believe) 486DX2-80 which would access at 40MHz
  49. >and would seemingly be able to take advantage of 60ns RAM.
  50.  
  51. Yep, the DX2-80, the DX50 and the DX4-100 at clockdoubling, and the
  52. DX4-120
  53.  
  54. >Obviously, I am not aware of how this compares in the Pentium realm,
  55. >but I still only see systems selling with 70ns RAM with an occasional
  56. >60ns, again, is it taking advantage of the faster RAM?
  57.  
  58. The Pentium 66/100/133/166 works with a 64 bit 66MHz bus. With 70ns
  59. fast page DRAM, you will get an 8-4-4-4 burst. With 60ns RAM, you can
  60. get 7-3-3-3, and with 60ns EDO RAM, 7-2-2-2. However, I am running my
  61. 60ns fast page DRAM at EDO rates, and it works without a flaw.
  62.  
  63. >Basically, it appears that the Amiga
  64. >has the ability to access RAM faster 
  65. >IF a faster CPU is being used
  66. >than the typical PC does.
  67.  
  68. Well, a 40MHz and especially a 50MHz external memory interface cries out 
  69. for 60ns RAM. However, the 40MHz version will normally work with 70ns,
  70. although it's not on the safe side. The 50MHz version will need another
  71. wait state with either, but the chances get away without are better with
  72. 60ns RAM, of course.
  73.  
  74. However, I wouldn't say the Amiga's memory acces gets "faster" when
  75. you upgrade the CPU, it gets "less slower"
  76.  
  77. Compile and time the following code on any Amiga with cache to test 
  78. memory performance. My system (a PC) takes 5.35 seconds, for a memory
  79. bandwidth of 75M/s.
  80.  
  81. Bernie
  82.  
  83. ====
  84. #include <stdio.h>
  85.  
  86. #define COUNT 1000000
  87.  
  88. main()
  89. {
  90.    int a=0;
  91.    unsigned int i,j;
  92.    int b[COUNT];
  93.    
  94.    printf("%d\n",sizeof(a));
  95.    
  96.    for (i=0;i<COUNT;i++) {
  97.       b[i]=i;
  98.    }
  99.    
  100.    for (j=0;j<100;j++) {
  101.       for (i=0;i<COUNT;i++) {
  102.      a+=b[i];
  103.       }
  104.    }
  105.    printf("%d: %d\n",j,a);
  106. }
  107. ====
  108.  
  109. -- 
  110. ==============================================================================
  111. I'm using an experimental version of "nn" to read news. So if anything seems
  112. strange about the headers of this mail or post, please inform me. Thanks!
  113.